1 223
enregistrements
Les établissements hospitaliers franciliens
Modèle de données
Cliquez pour déplier Cliquez pour replier
Schéma JSON
L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.
{
- "title":"les_etablissements_hospitaliers_franciliens",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/les_etablissements_hospitaliers_franciliens"
}
] - "definitions":{
- "les_etablissements_hospitaliers_franciliens":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/les_etablissements_hospitaliers_franciliens_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "les_etablissements_hospitaliers_franciliens_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "finess_et":,{
- "type":"string",
- "title":"FINESS_ET",
- "description":""
} - "finess_ej":,{
- "type":"string",
- "title":"FINESS_EJ",
- "description":""
} - "raison_sociale":,{
- "type":"string",
- "title":"RAISON_SOCIALE",
- "description":""
} - "raison_sociale_entite_juridique":,{
- "type":"string",
- "title":"RAISON_SOCIALE_ENTITE_JURIDIQUE",
- "description":""
} - "adresse_administrative_1":,{
- "type":"string",
- "title":"ADRESSE_ADMINISTRATIVE_1",
- "description":""
} - "adresse_administrative_2":,{
- "type":"string",
- "title":"ADRESSE_ADMINISTRATIVE_2",
- "description":""
} - "num_voie":,{
- "type":"integer",
- "title":"NUM_VOIE",
- "description":""
} - "cpt_num":,{
- "type":"string",
- "title":"CPT_NUM",
- "description":""
} - "type_voie":,{
- "type":"string",
- "title":"TYPE_VOIE",
- "description":""
} - "voie":,{
- "type":"string",
- "title":"VOIE",
- "description":""
} - "adresse_complete":,{
- "type":"string",
- "title":"ADRESSE_COMPLETE",
- "description":""
} - "complement_adresse":,{
- "type":"string",
- "title":"COMPLEMENT_ADRESSE",
- "description":""
} - "num_dept":,{
- "type":"integer",
- "title":"NUM_DEPT",
- "description":""
} - "dept":,{
- "type":"string",
- "title":"DEPT",
- "description":""
} - "cp_ville":,{
- "type":"string",
- "title":"CP_VILLE",
- "description":""
} - "num_tel":,{
- "type":"string",
- "title":"NUM_TEL",
- "description":""
} - "num_fax":,{
- "type":"string",
- "title":"NUM_FAX",
- "description":""
} - "num_cat":,{
- "type":"integer",
- "title":"NUM_CAT",
- "description":""
} - "categorie_de_l_etablissement":,{
- "type":"string",
- "title":"CATEGORIE_DE_L_ETABLISSEMENT",
- "description":""
} - "num_type":,{
- "type":"integer",
- "title":"NUM_TYPE",
- "description":""
} - "type_etablissement":,{
- "type":"string",
- "title":"TYPE_ETABLISSEMENT",
- "description":""
} - "num_siret":,{
- "type":"string",
- "title":"NUM_SIRET",
- "description":""
} - "code_ape":,{
- "type":"string",
- "title":"CODE_APE",
- "description":""
} - "code_tarif":,{
- "type":"integer",
- "title":"CODE_TARIF",
- "description":""
} - "lib_tarification":,{
- "type":"string",
- "title":"LIB_TARIFICATION",
- "description":""
} - "code_psph":,{
- "type":"integer",
- "title":"CODE_PSPH",
- "description":""
} - "participant_service_public_hospitalier":,{
- "type":"string",
- "title":"PARTICIPANT_SERVICE_PUBLIC_HOSPITALIER",
- "description":""
} - "date_ouverture":,{
- "type":"string",
- "format":"date",
- "title":"DATE_OUVERTURE",
- "description":""
} - "lat":,{
- "type":"string",
- "title":"lat",
- "description":""
} - "lng":,{
- "type":"string",
- "title":"lng",
- "description":""
} - "wgs84":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"WGS84",
- "description":""
}
} - "finess_et":
}
} - "fields":
} - "properties":
} - "les_etablissements_hospitaliers_franciliens":
}
Soumettre une réutilisation
Cliquez pour déplier Cliquez pour replier
Connectez-vous pour proposer une réutilisation.
Jeux de données similaires
- Liste des centres de soins situés en Île-de-France (source FINESS /15-05-2013), leurs coordonnées et géolocalisation :
- Liste des établissements et services pour personnes âgées situés en Île-de-France (source FINESS /15-05-2013) et géolocalisation :
- Liste des établissements et services sociaux concourant à la protection de l'enfance situés en Île-de-France (source FINESS /15-05-2013), leurs coordonnées, adresse et géolocalisation :
- Liste des établissements du domaine sanitaire et social.